$array = array('', '', 'other', '', 'other'); $counter = 0; foreach($array as $value) { if($value === '') $counter++; } echo $counter;